header{
    z-index: 100;
    display: block;
    width: 100%;
    top: 0;
    box-shadow: 0.125rem 0.25rem 0.5rem rgb(0 0 0 / 9%);
}

header .header{
    margin: auto 100px auto 100px;
    background-color: #fff;
    display: flex;
}

hr {
    width: 100%;
}

a, a:hover, a:active, a:visited, a:focus {
    color: #0058ac!important;
}

.skip-link {
    background: #4079af;
    color: #fff;
    font-weight: 700;
    left: 50%;
    padding: 4px;
    position: absolute;
    transform: translateY(-100%);
}

.skip-link:focus {
    transform: translateY(0%);
}

.header .lang {
    height: 114px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.cpl-logo{
    height: 100px;
    margin: 10px 0 0 0;
}

.lang img{
    cursor: pointer;
    border-radius: 2px;
    width: 30px;
}

.breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0058ac;
    padding: 20px 115px 10px 115px;
    border-bottom: 1px solid;
    border-color: #ececec;
    font-size: 19px;
    font-weight: 400;
    font-family: 'Open sans', sans-serif;
}

.breadcrumb span{
    cursor: pointer;
}

.link {
    text-decoration: underline;
    color: #0058ac;
    margin-right: 5px;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    max-width: 80%;
    margin: auto;
}

.titleContainer {
    margin-top: 50px;
}
.titleContainer h1, .midContainer h2 {
    color: rgb(64 121 175);
    font-weight: 400;
}

.midContainer a {
    color: blue!important;
}

.midContainer p, ol > li, ul > li {
    font-size: 14px;
    font-weight: 400;
}

.marginBot35 {
    margin-bottom: 35px;
}

.marginBot15 {
    margin-bottom: 15px;
}

.contactosWrapper {
    display: flex;
}

.contactosItem {
    margin-right: 25px;
}

footer.footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px 60px;
    box-shadow: 0.125rem -0.25rem 0.5rem rgb(0 0 0 / 9%);
    margin-top: 15px;
}

footer > div {
    padding: 40px 0px;
}

footer .dadosCPL p{
    margin:0px;
    font-size: 14px;
}

@media screen and (max-width: 800px) {
    footer.footer{
        flex-flow: column;
    }
    
    .contactosWrapper {
        flex-direction: column;
    }
    
    .selo-prata {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    header .header {
        margin: auto 100px auto 30px;
    }
    .breadcrumb {
        padding: 20px 115px 10px 45px;
    }
}